home *** CD-ROM | disk | FTP | other *** search
/ AI Game Programming Wisdom / AIGameProgrammingWisdom.iso / SourceCode / 11 Learning / 04 Mommersteeg / Tennis / StdAfx.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-09-23  |  1.4 KB  |  38 lines

  1. //----------------------------------------------------------------------------------------------
  2. // Sequential Prediction Demo: The positioning pattern
  3. // 
  4. // Author:  Fri Mommersteeg
  5. // Date:    10-09-2001
  6. // File:    StdAfx.h (precompiled header; used by Visual C++)
  7. //----------------------------------------------------------------------------------------------
  8.  
  9. #if !defined(AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_)
  10. #define AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_
  11.  
  12. #if _MSC_VER > 1000
  13. #pragma once
  14. #endif // _MSC_VER > 1000
  15.  
  16. #define WIN32_LEAN_AND_MEAN        // Exclude rarely-used stuff from Windows headers
  17.  
  18. //----------------------------------------------------------------------------------------------
  19. // Include files (headers the change infrequently)
  20. //----------------------------------------------------------------------------------------------
  21.  
  22. #include <windows.h>
  23. #include <ddraw.h>
  24. #include "directdraw.h"
  25. #include <mmsystem.h>
  26. #include <crtdbg.h>
  27. #include <dsound.h>
  28. #include "directsound.h"
  29. #include "resource.h"
  30. #include "tennis.h"
  31.  
  32. // TODO: reference additional headers your program requires here
  33.  
  34. //{{AFX_INSERT_LOCATION}}
  35. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  36.  
  37. #endif // !defined(AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_)
  38.